home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -websites- / wirenet / files / thor25_arexx.lha / Examples / ShowText_ex.thor < prev   
Text File  |  1995-09-06  |  355b  |  27 lines

  1. /*
  2.  *
  3.  *  ShowText_ex.thor - example program for the SHOWTEXT function
  4.  *
  5.  */
  6.  
  7. options results
  8.  
  9. thorport = address()
  10.  
  11. REQUESTFILE title '"Select text file to view:"' id '"s:"' fullpath
  12. if(rc ~= 0) then
  13. do
  14.     if(rc = 30) then say THOR.LASTERROR
  15.     exit
  16. end
  17.  
  18. filename = result
  19.  
  20. SHOWTEXT file '"'filename'"' CMT
  21. if(rc = 30) then
  22. do
  23.     say THOR.LASTERROR
  24. end
  25.  
  26. exit
  27.